home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / neumap3.zip / NUMP.ZP / SER.HLP < prev    next >
Text File  |  1993-01-02  |  2KB  |  39 lines

  1.  
  2. 1. Creating a Training Data File from Time Series:
  3.    Given a file of columnar time series data, in which each row 
  4.    corresponds to a different time, the program slides a window 
  5.    down the file and writes inputs and desired outputs to a 
  6.    training data file.
  7.  
  8. 2. The user chooses some rows and columns in the sliding window
  9.    as inputs, and chooses others as desired outputs. For example, 
  10.    a file of price and volumn data on a stock can be processed 
  11.    into a training data file for stock market prediction, if past 
  12.    prices and volumns are inputs, and the present price is the 
  13.    desired output.
  14.  
  15. 3. Example Run of Training File Creation From Time Series
  16.  a. Go to the "Batch Processing" option and press <ret>
  17.  b. Observe the parameter file with commented keyboard responses;
  18.  
  19. Exxon1     ! filename of file containing columns of time series data
  20. 4          ! number of columns of data in the file
  21. 1          ! number of columns from which desired outputs will be obtained
  22. 3          ! columns containing desired outputs (the current price)
  23. 2          ! number of columns from which inputs will be obtained 
  24. 2  3       ! specific columns from which inputs will be obtained (past prices and volumns)
  25. 1  4       ! number of rows back which contain inputs for column 2
  26. 1  4       ! number of rows back which contain inputs for column 3
  27. Ex         ! filename chosen for the training data file
  28.  
  29.     Here, we will use historical stock price and volume data 
  30.     to form training data for stock price prediction.
  31.  c. Exit the DOS editor and observe the program running
  32.  d. Go to the "Examine Program Output" option and press <ret>
  33.  e. The program has created a file called "EX" which has 8 inputs 
  34.     (four past prices and four past volumns) and 1 desired output (a price).
  35.  f. You can run this program on your own data, simply by editing the 
  36.     parameter file in the "batch Run" option.
  37.  
  38.  
  39.